MacrosSamplesMake cell font boldOn this pageMake cell font boldDescription Sets the font of the cell A2 to bold. (function(){ Api.GetActiveSheet().GetRange("A2").SetBold(true);})(); Methods used: GetActiveSheet, GetRange, SetBold Reference Microsoft VBA macro code Sub example() Range("A2").Font.Bold = TrueEnd Sub Result